From: Rello Date: Fri, 31 Jan 2025 08:18:26 +0000 (+0100) Subject: Delete .github/workflows/documentation.yml X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~2^2~102 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success/%22http:/www.example.com/cgi/success?a=commitdiff_plain;h=65ab4f9bdeaed5e7702f7b0dfe0319d05c230d3c;p=nextcloud-desktop.git Delete .github/workflows/documentation.yml Documentation was moved to https://github.com/nextcloud/documentation Signed-off-by: Rello --- diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml deleted file mode 100644 index 6ffae4d68..000000000 --- a/.github/workflows/documentation.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Generate Documentation -on: - pull_request: - types: [opened, synchronize, reopened] -jobs: - build: - name: Generate Documentation - runs-on: ubuntu-latest - container: ghcr.io/nextcloud/continuous-integration-client-qt6-doc:client-doc-6.8.0-1 - steps: - - uses: actions/checkout@v4 - with: - fetch-depth: 1 - - name: Generate documentation - run: | - cd doc - make html > build.log 2>&1 - if grep WARNING build.log; then - grep WARNING build.log | awk '{ - split($0, fields, ":"); - sub("/__w/desktop/desktop/", "", fields[1]); - print "::warning file=" fields[1] ( length(fields[2]) ? ",line=" fields[2] : "" ) ",title=Documentation generation::" substr($0, index($0, fields[4]) + 1) - }' - - exit 1 - else - exit 0 - fi